projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e0a7d28
)
emoji chooser: Actually force Emoji presentation
author
Matthias Clasen
<mclasen@redhat.com>
Tue, 4 Dec 2018 02:46:09 +0000
(21:46 -0500)
committer
Matthias Clasen
<mclasen@redhat.com>
Tue, 4 Dec 2018 02:47:53 +0000
(21:47 -0500)
The previous commit was using the text presentation selector
instead of the Emoji one. Oops.
gtk/gtkemojichooser.c
patch
|
blob
|
history
diff --git
a/gtk/gtkemojichooser.c
b/gtk/gtkemojichooser.c
index d8124cb90fc55b412a919d2ba30a515a300e9a1d..c7b840037ba24f91542a93260830db284a9118dc 100644
(file)
--- a/
gtk/gtkemojichooser.c
+++ b/
gtk/gtkemojichooser.c
@@
-361,7
+361,7
@@
add_emoji (GtkWidget *box,
p += g_unichar_to_utf8 (code, p);
}
g_variant_unref (codes);
- p += g_unichar_to_utf8 (0xFE0
E
, p); /* U+FE0F is the Emoji variation selector */
+ p += g_unichar_to_utf8 (0xFE0
F
, p); /* U+FE0F is the Emoji variation selector */
p[0] = 0;
label = gtk_label_new (text);